home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Camelot / Camelot 043 (1989-06)(Swedish User Group of Amiga)(SE)(PD)[WB].zip / Camelot 043 (1989-06)(Swedish User Group of Amiga)(SE)(PD)[WB].adf / zc / zc.doc < prev    next >
Text File  |  1989-03-08  |  1KB  |  50 lines

  1.  
  2.                                 ZC(1)
  3. ZC
  4. NAME
  5.    zc  -Sozobon C compiler ported to the amiga.  Ver 1.01
  6.     by  Johann Ruegg.
  7.     modified by Joe Montgomery Dec 1988.
  8.  
  9. SYNOPSIS
  10.    zc  [ options ] [file.c's ]
  11.  
  12. DESCRIPTION
  13.      Zc is a c compiler for the amiga.    It is as far as
  14.      I know a K & R compatible compiler.  Zc takes <file>.c
  15.      and creates a Motorola compatible assembly source whose
  16.      default name is <file>.s .  include files are looked
  17.      for in the directory specified by the manx environment
  18.      variable INCLUDE.    Simply use the command
  19.      set INCLUDE=includedir
  20.      from the CLI or place it in your startup-sequence.
  21.  
  22.      Below: are the options available at present.
  23.  
  24.        -Dxxxx    Define xxxx
  25.           same as a #define xxxx in the source file
  26.        -Uxxxx    Undefine xxxx
  27.           same as a #undefine xxxx in the source file
  28.        -Ixxxx    Include Directory = xxxx
  29.        -P    profiler. Places a call to mcount before calling
  30.           main.  You had better not use this for now.
  31.        -Oxxxx    outputfile name = xxxx
  32.        -V    display compiler version
  33.        -?    Help
  34.        -C    force Data,Bss into Chip memory
  35.        -F    force Data,Bss into Fast memory
  36.        -Exxxx    errorfile. Zc writes the number of errors into
  37.           this file.  This is used by the compiler front
  38.           end in order to determine whether to start the
  39.            assembler a68k.
  40.  
  41. BUGS
  42.  
  43.     See zc.readme.
  44.  
  45.  
  46.     Joe Montgomery UC Berkeley Math Dept.
  47.     monty@brahms.berkeley.edu
  48.  
  49.  
  50.